home *** CD-ROM | disk | FTP | other *** search
- comment #
-
- +----------------------------------------------------------------------+
- | |
- | QBWiz Copyright (c) 1990-1992 Thomas G. Hanlin III |
- | |
- | QuickBasic Access Library |
- | |
- +----------------------------------------------------------------------+
-
- #
-
- public COLORBURST
-
-
- .model medium
-
- .code
-
-
-
- COLORBURST proc ; get color burst value
- xor ax,ax
- mov al,b$Burst
- or ax,ax
- jz Done
- mov ax,-1
- Done: ret
- COLORBURST endp ; get color burst value
-
-
-
- .data
-
- extrn b$Burst: byte
-
-
-
- end
-